fix(desktop): Windows sidecar stubs, managed Node, onboarding scroll#2496
Open
Chessing234 wants to merge 3 commits into
Open
fix(desktop): Windows sidecar stubs, managed Node, onboarding scroll#2496Chessing234 wants to merge 3 commits into
Chessing234 wants to merge 3 commits into
Conversation
Signed-off-by: Taksh <takshkothari09@gmail.com> Co-authored-by: Cursor <cursoragent@cursor.com>
Signed-off-by: Taksh <takshkothari09@gmail.com> Co-authored-by: Cursor <cursoragent@cursor.com>
Signed-off-by: Taksh <takshkothari09@gmail.com> Co-authored-by: Cursor <cursoragent@cursor.com>
This was referenced Jul 23, 2026
|
Running into the same issue. This seems to fix it! |
sailorpepe
added a commit
to sailorpepe/buzz
that referenced
this pull request
Jul 23, 2026
_ensure-sidecar-stubs unconditionally `touch`es 0-byte placeholder files in desktop/src-tauri/binaries/. On the documented dev flow (`just setup && just build && just dev`) the real binaries are already compiled to the workspace target dir, but the stubs are never filled — so `tauri dev` stages a 0-byte buzz-acp next to the app binary and the desktop app fails to launch its agent auth helper: Couldn't load sign-in options: failed to run buzz-acp auth helper: Permission denied (os error 13) This breaks Claude Code / Codex harness sign-in on macOS out of the box. Copy the compiled binary into the stub when it exists (chmod +x), matching the cp + chmod pattern `desktop-standalone` / `desktop-release-build` already use. Fall back to `touch` only when the binary is not built yet, preserving the existing tauri-config-validation behavior for flows that have not built the workspace. Distinct from block#2492 / block#2496, which fix the Windows `.exe` stub suffix; this is the macOS empty-fill case. Signed-off-by: sailorpepe <kobumining@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.exeto Windows sidecar stub paths in the Justfile (#2492)#2491)#2414)Test plan
just desktop/ CI desktop job on a Windows runner creates*-windows-*.exesidecar stubsnode --versionmatches the managed runtimeFixes #2492
Fixes #2491
Fixes #2414
Made with Cursor